If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range.
型宣言文字またはキーワードが指定されていない場合、DefStr ステートメントは文字範囲に従ってデフォルトの変数型を設定します。
Defxxx Characterrange1[, Characterrange2[,...]]
Defxxx Characterrange1[, Characterrange2[,...]]
Characterrange: Letters that specify the range of variables that you want to set a default data type for.
Characterrange: デフォルトのデータ型の設定対象である変数の範囲を指定する文字。
xxx: Keyword that defines the default variable type:
xxx: デフォルトの変数型を定義するキーワード。
Keyword: Default variable type
Keyword: デフォルトの変数型
DefStr: String
DefStr: 文字列
REM Prefix definitions for variable types:
REM 変数型のプレフィックスの定義:
DefBool b
DefBool b
DefDate t
DefDate t
DefDbL d
DefDbL d
DefInt i
DefInt i
DefLng l
DefLng l
DefObj o
DefObj o
DefVar v
DefVar v
DefStr s
DefStr s
Sub ExampleDefStr
Sub ExampleDefStr
sStr=String REM sStr is an implicit string variable
sStr=String REM sStr は暗黙的な文字列変数です
end sub
end sub